home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / gkismet / StatusBar.pm < prev    next >
Text File  |  2005-10-20  |  2KB  |  98 lines

  1. #!/usr/bin/perl -w
  2. #
  3. # $Id: StatusBar.pm,v 1.23 2003/08/01 05:15:36 solovam Exp $
  4. #
  5. # This file is a part of gkismet
  6. #
  7. # This program is free software; you can redistribute it and/or
  8. # modify it under the terms of the GNU General Public License
  9. # as published by the Free Software Foundation; either version 2
  10. # of the License, or (at your option) any later version.
  11. #
  12. # This program is distributed in the hope that it will be useful,
  13. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. # GNU General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU General Public License
  18. # along with this program; if not, write to the Free Software
  19. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  20. #
  21.  
  22. #
  23. # StatusBar class
  24. #
  25. package StatusBar;
  26.  
  27. use Gtk;
  28. use Misc;
  29. use ReusableConnObserver;
  30. use strict;
  31.  
  32. @StatusBar::ISA = qw(ReusableConnObserver);
  33.  
  34. #
  35. # Constructor
  36. #
  37. sub new
  38. {
  39.     my $type = shift;
  40.     my $self = new ReusableConnObserver(@_);
  41.     bless $self, $type;
  42.  
  43.     $self->{'statusBar'} = new Gtk::Statusbar();
  44.     $self->{'sbContext'} = $self->{'statusBar'}->get_context_id('status line');
  45.     $self->{'statusBar'}->show();
  46.     $self->{'depth'} = 0;
  47.  
  48.     return $self;
  49. }
  50.  
  51. #
  52. # Handle an update from an observable
  53. #
  54. sub update
  55. {
  56.     my $self = shift;
  57.     my $object = shift;
  58.     my $data = shift;
  59.  
  60.     if($object->isa('Connection') && defined $self->{'connection'} && $self->{'connection'} eq $object)
  61.     {
  62.         if($data->{'changed'} eq 'status')
  63.         {
  64.             $self->{'statusBar'}->push($self->{'sbContext'}, $self->{'connection'}->getStatus());
  65.             $self->{'depth'}++;
  66.         }
  67.         elsif($data->{'changed'} eq 'alert')
  68.         {
  69.             $self->{'statusBar'}->push($self->{'sbContext'}, $self->{'connection'}->getAlert()->{'text'});
  70.             $self->{'depth'}++;
  71.         }
  72.     }
  73. }
  74.  
  75. #
  76. # Flush all accumulated data
  77. #
  78. sub flush
  79. {
  80.     my $self = shift;
  81.     while($self->{'depth'} > 0)
  82.     {
  83.         $self->{'statusBar'}->pop($self->{'sbContext'});
  84.         $self->{'depth'}--;
  85.     }
  86. }
  87.  
  88. #
  89. # Get widget
  90. #
  91. sub getWidget
  92. {
  93.     my $self = shift;
  94.     return($self->{'statusBar'});
  95. }
  96.  
  97. 1;
  98.